home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource for Source: C/C++
/
Resource for Source - C-C++.iso
/
codelib8
/
v_10_04
/
1004110c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-11-01
|
196 b
|
11 lines
void get_low_high(int a, int b, int c, int *low, int *high)
{
*low = (a < b) ? a : b;
if (c < *low) *low = c;
*high = (a > b) ? a : b;
if (c > *high) *high = c;
}